datetime check null c#

57

datetime check null c# -

DateTime? datetime = null;

 if (!datetime.HasValue)
 {
     //unassigned
 }

Comments

Submit
0 Comments